home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cgraphix / copyscre.c < prev    next >
Text File  |  1986-05-12  |  360b  |  19 lines

  1. /* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
  2. #include    <stdio.h>
  3. #define    EXTERN    extern
  4. #include    <typedef.h>
  5.  
  6.  
  7. void CopyScreen()
  8. {
  9.     int        ToBase;
  10.  
  11.     if (RamScreenGlb) {
  12.         ToBase = (GrafBase == HardwareGrafBase) ?
  13.             ScreenGlb : HardwareGrafBase;
  14.         movblock(0, GrafBase, 0, ToBase, ScreenSizeGlb << 2);
  15.     }
  16. }
  17.  
  18.  
  19.